-
Re: Need to add an "OR" function to my formula
You can nest IF statements together to check for one condition and then the other. =IF([Estimated Project Finish Date]@row > [End Date]@row, 1, IF(AND([End Date]@row <= TODAY(7), [End Date]@row…1 · -
Re: Approval Workflow
Create a request approval that triggers on a frequency. For example, I have one that triggers every Wednesday at 10 AM. The condition should be that the checkbox is checked and the approval is either…1 · -
Re: Formula to check a box if the date in another column is the current month
It's only checking the month. You will want to check both month and year. =IF(AND(MONTH(Created@row) = MONTH(TODAY()), YEAR(Created@row) = YEAR(TODAY())), 1, 0) =IF(AND(MONTH(Created@row) = MONTH(TOD…2 · -
Re: Formula to check a box if the date in another column is the current month
=IF(MONTH(Created@row) = MONTH(TODAY()) - 1, 1, 0)2 · -
Re: Formula to check a box if the date in another column is the current month
=IF(MONTH(Created@row) = MONTH(TODAY()), 1, 0)2 ·